home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * ControlPanelApp.js
- *
- * USAGE
- * Part of Netobjects JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 2002-2004 Website Pros, Inc.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Website Pros, Inc.
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Website Pros, Inc.
- *
- * <copyright@websitepros.com>
- *
- * NOTES
- * JavaScript code.
- *****/
- if (!IS_isModuleInitialized("IS.NOF.CONTROLPANEL.HTML.ControlPanelApp"))
- {
- function NOF_ControlPanelApp(_name) {
- this.__proto__ = NOF_ControlPanelApp.prototype;
-
- if ( arguments.length == 0 )
- this.SUPER();
- else {
- this.SUPER(_name, ".\\ControlPanel\\ControlPanelResources", NOF.UTIL.DefaultLocale);
- }
- }
-
- NOF_ControlPanelApp.inherits(NOF.HTML.App);
- NOF.CONTROLPANEL.HTML.__proto__.ControlPanelApp = NOF_ControlPanelApp;
- }